import { AllAPIResponses, NetworkType, ClaimType } from './../../../index'; declare type Params = { networkType: NetworkType; }; declare type Payload = { appKey?: string; functionName: string; functionVersion: string; uniqueId: string; }; declare const post: (params: Params, body: Payload, headers?: Headers | undefined) => Promise>; export default post;